home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 October
/
EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso
/
Aminet
/
dev
/
gcc
/
ixemul_src.lha
/
ixemul-41.0
/
stack
/
Makefile.in
< prev
next >
Wrap
Makefile
|
1995-05-23
|
1KB
|
57 lines
#### Start of system configuration section. ####
srcdir = @srcdir@
VPATH = @srcdir@
# Common prefix for machine-independent installed files.
prefix = @prefix@
# Common prefix for machine-dependent installed files.
exec_prefix = @exec_prefix@
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/Sys/libs
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
CC = @CC@
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
RANLIB = @RANLIB@
AR = ar
#### End system configuration section ####
FLAVOR_CFLAGS = -m$(CPU) -m$(FPU) -f$(BASE)
OTHER_CFLAGS = -fomit-frame-pointer
ALL_CFLAGS = $(CFLAGS) $(FLAVOR_CFLAGS) $(OTHER_CFLAGS) $(INCS) $(DEFS)
DEFS =
INCS = -I$(srcdir) -I$(srcdir)/../library -I$(srcdir)/../include
LIB = libstack.a
.c.o:
$(CC) $(ALL_CFLAGS) -c $< -o $@
SRC= init_stk.c link_a5_0_f.c link_a5_d0_f.c stk_argbytes.c \
stk_minframe.c stk_safezone.c stkchk_d0.c stkext.c stkovf.c \
stkrst.c stkrst_f.c sub_d0_sp.c xcovf.c
OBJ= init_stk.o link_a5_0_f.o link_a5_d0_f.o stk_argbytes.o \
stk_minframe.o stk_safezone.o stkchk_d0.o stkext.o stkovf.o \
stkrst.o stkrst_f.o sub_d0_sp.o xcovf.o
$(LIB): $(OBJ)
rm -f $@
$(AR) rc $@ $(OBJ)
$(RANLIB) $@
clean:
rm -f *!
clobber: clean
rm -f $(OBJ) $(LIB) $(LIB2)